Value | Meaning |
---|---|
AKEY_EVENT_FLAG_WOKE_HERE0x1 | This mask is set if the device woke because of this key event. |
AKEY_EVENT_FLAG_SOFT_KEYBOARD0x2 | This mask is set if the key event was generated by a software keyboard. |
AKEY_EVENT_FLAG_KEEP_TOUCH_MODE0x4 | This mask is set if we don't want the key event to cause us to leave touch mode. |
AKEY_EVENT_FLAG_FROM_SYSTEM0x8 | This mask is set if an event was known to come from a trusted part of the system. That is, the event is known to come from the user, and could not have been spoofed by a third party component. |
AKEY_EVENT_FLAG_EDITOR_ACTION0x10 | This mask is used for compatibility, to identify enter keys that are coming from an IME whose enter key has been auto-labelled "next" or "done". This allows TextView to dispatch these as normal enter keys for old applications, but still do the appropriate action when receiving them. |
AKEY_EVENT_FLAG_CANCELED0x20 | When associated with up key events, this indicates that the key press has been canceled. Typically this is used with virtual touch screen keys, where the user can slide from the virtual key area on to the display: in that case, the application will receive a canceled up event and should not perform the action normally associated with the key. Note that for this to work, the application can not perform an action for a key until it receives an up or the long press timeout has expired. |
AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY0x40 | This key event was generated by a virtual (on-screen) hard key area. Typically this is an area of the touchscreen, outside of the regular display, dedicated to "hardware" buttons. |
AKEY_EVENT_FLAG_LONG_PRESS0x80 | This flag is set for the first key repeat that occurs after the long press timeout. |
AKEY_EVENT_FLAG_CANCELED_LONG_PRESS0x100 | Set when a key event has AKEY_EVENT_FLAG_CANCELED set because a long press action was executed while it was down. |
AKEY_EVENT_FLAG_TRACKING0x200 | Set for AKEY_EVENT_ACTION_UP when this event's key code is still being tracked from its initial down. That is, somebody requested that tracking started on the key down and a long press has not caused the tracking to be canceled. |
AKEY_EVENT_FLAG_FALLBACK0x400 | Set when a key event has been synthesized to implement default behavior for an event that the application did not handle. Fallback key events are generated by unhandled trackball motions (to emulate a directional keypad) and by certain unhandled key presses that are declared in the key map (such as special function numeric keypad keys when numlock is off). |
Key event flags.